熟悉基本的Terminal(命令列)指令,是身為一個開發者必要的工具。今天就先用命令列建立一個檔案夾。
$ cd desktop
$ desktop:mkdir coding
$ desktop:cd coding
$ coding:mkdir myFirstApp
$ coding:cd myFirstApp
$ myFirstApp:touch index.html
$ myFirstApp:touch style.css
$ myFirstApp:touch app.js
$ myFirstApp:ls
app.js index.html style.css
這樣就完成了資料夾的建立。